home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / NotImplementedError.java < prev    next >
Text File  |  1998-09-08  |  486b  |  26 lines

  1. package com.symantec.itools.lang;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public class NotImplementedError
  11.     extends Error
  12. {
  13.     public NotImplementedError()
  14.     {
  15.     }
  16.  
  17.     public NotImplementedError(String msg)
  18.     {
  19.         super(msg);
  20.     }
  21.  
  22.     public NotImplementedError(ExecutionContext context)
  23.     {
  24.         super("Method not implemented " + context.getClazz() + "." + context.getMethod());
  25.     }
  26. }